home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 129 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.3 KB

  1. Path: news.borg.com!news
  2. From: warren@borg.com  (Warren Hall)
  3. Newsgroups: comp.lang.rexx
  4. Subject: Re: Variables and external commands??
  5. Date: 9 Jan 1996 00:45:35 GMT
  6. Organization: Team OS/2
  7. Distribution: inet
  8. Message-ID: <4csdrf$gnr@news.borg.com>
  9. References: <4cr6mm$ea@crow.cybercomm.net>
  10. Reply-To: warren@borg.com (Warren Hall)
  11. NNTP-Posting-Host: l16.borg.com
  12. X-Newsreader: IBM NewsReader/2 v1.9d - NLS
  13.  
  14. In <4cr6mm$ea@crow.cybercomm.net>, jwrugo@raven.cybercom.com (John W. Rugo) writes:
  15. >Hi,
  16. >
  17. >Can some one please help me.  I am taking a two string variables
  18. >and some quoted strings and concatinating them into a single
  19. >value.  this single value I want to be used to run an external
  20. >program.
  21. >
  22. >I am trying to create an installation routine using unzip32.exe.
  23. >I can't seem to get it working.  I put two values in that 
  24. >represent drive and path for source and target.  I can't seem
  25. >to get it to work though.
  26. >
  27. >Any help would be greatly appreciated,
  28. >John.
  29. >
  30. >/------------------------------------\
  31. >John W. Rugo
  32. >jwrugo@raven.cybercom.com
  33. >
  34. It is a shame that none of the .inf files nor the standard REXX manuals have the 
  35. keywords CONCATENATE or JOIN or ABUT or COMPRESS.
  36.  
  37. The symbol is "||" as in
  38. avariable = "xyz"
  39. res= "a string" avariable || 'morestuf'
  40. Yielding "a string xyzmorestuf"
  41.  
  42. Warren
  43. http://www.borg.com/~warren
  44.  
  45.